
.navbar-toggle {
    display: block !important;
  }

  @media (min-width: 768px) {
    .navbar-toggle {
      display: none !important;
    }
  }
/* Optional cleanup styling */
.navbar-brand img {
  height: 135px;
}

.navbar-nav > li > a {
  padding: 20px 15px;
  font-weight: 500;
  color: #333;
}

/* Responsive fix if logo overlaps menu */
@media (max-width: 767px) {
  .navbar-brand img {
    height: 80px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav > li {
    float: none;
  }
}


 /* === Banner and slides === */
  /* .hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
  }

  .hero-banner .slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
  }

  .hero-banner .slide.active {
    opacity: 1;
    z-index: 2;
  } */

  /* === Property Slider (glass cards) === */
  /* .property-slider {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    z-index: 3;
    padding: 10px 0;
  }

  .slider-window {
    overflow: hidden;
    width: 100%;
  }

  .slider-track {
    display: flex;
    gap: 30px;
    padding: 0 30px;
    animation: scrollSlider 40s linear infinite;
  }

  .slide-card {
    flex: 0 0 33.33%;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
    background: rgb(0 0 0 / 29%);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .slide-card h4 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .slide-card p {
    margin: 3px 0;
    font-size: 20px;
  }

  @keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  } */

  /* Hide property slider on mobile */
  /* @media (max-width: 768px) {
    .property-slider {
      display: none !important;
    }
  } */

  /* === Mobile Banner === */
  .mobile-banner {
    display: none;
    position: relative;
    height: 80vh;
  }

  .mobile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-content {
    position: absolute;
    top: 0; left: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .mobile-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .mobile-content p {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .mobile-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .mobile-buttons a.btn {
    padding: 10px;
    font-size: 1rem;
    background-color: #0f0d0d;
    border: none;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .mobile-buttons a.btn:hover {
    background-color: #333;
  }

  /* Show mobile banner on mobile, hide desktop banner */
  @media (max-width: 768px) {
    .hero-banner {
      display: none;
    }
    .mobile-banner {
      display: block;
    }
  }

.about-us{
  padding: 6% 0;
}
.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s ease-out forwards;
  }

  .animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease-out forwards;
  }

  @keyframes fadeInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .about-us h2 {
    font-weight: 600;
    font-size: 35px;
  }

  .about-us p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
  }

  @media (max-width: 768px) {
    .animate-fade-in-left,
    .animate-fade-in-right {
      transform: translateY(20px);
      animation: fadeInUp 1s ease-out forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
/* Section Styling */
.location-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.location-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

/* Container */
.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex Row */
.location-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

/* Columns */
.location-col {
  flex: 0 0 48%;
  box-sizing: border-box;
  padding: 15px;
}

/* Image Styling */
.location-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Content Styling */
.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: #444;
}

.location-list .icon {
  font-size: 1.3rem;
  color: #007bff;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .location-row {
    flex-direction: column;
  }

  .location-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 0;
  }

  .location-title {
    font-size: 1.6rem;
  }
}

.project-amenities {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.amenities-container {
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #333;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.amenity-item {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-5px);
}

.amenity-item i {
  font-size: 5rem;
  color: #303f49e8;
  margin-bottom: 10px;
}

.amenity-item p {
  margin: 0;
  font-size: 18px;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 

.slider-container {
      max-width: 100%;
      overflow: hidden;
      position: relative;
      padding: 20px;
    }

    .slider-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slide {
      flex: 0 0 25%;
      padding: 10px;
    }

    .slide img {
      width: 100%;
      border-radius: 8px;
      display: block;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .slide {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 600px) {
      .slide {
        flex: 0 0 100%;
      }
    }

    .blank{
		/* width:200px;
		height: 50px; */
	  background-color: #303f49e8;
		padding: 15px;	
		text-align: center;
		line-height: 50px;
	}
	.blank a{
font-size: 25px;
		font-family: cursive;
		color: white !important;
		animation: blink 1s linear infinite;
	}
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}
.form-control {
    margin-bottom: 10px;}

    .location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.location-list .icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.btn {
    background: #ec971f;
    display: inline-block;
    padding: 7px 22px;
    margin-bottom: 0;
    font-size: 17px;
    color: #fff;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* background-image: none; */
    border: 1px solid transparent;
    border-radius: 4px;
}
 .new-footer-section {
    background: #303f49e8;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .new-footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 300px;
  }

  .footer-left h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffcc00;
  }

  .footer-left a,
  .footer-right a {
    color: #ffcc00;
    text-decoration: none;
  }

  .footer-left a:hover,
  .footer-right a:hover {
    text-decoration: underline;
  }

  /* ✨ Animation */
  .animated-slide-in {
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
  }

  .animated-slide-in-delay {
    animation: slideInRight 1s ease 0.3s forwards;
    opacity: 0;
  }

  @keyframes slideInLeft {
    from {
      transform: translateX(-40px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideInRight {
    from {
      transform: translateX(40px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* 📱 Responsive */
  @media (max-width: 768px) {
    .new-footer-wrapper {
      flex-direction: column;
      text-align: center;
    }

    .footer-left,
    .footer-right {
      animation: none;
      opacity: 1;
    }
  }

/* Base Styling */
.custom-contact-block {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.custom-container {
  max-width: 1200px;
  margin: auto;
}

.custom-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

.custom-title small {
  display: block;
  font-size: 16px;
  color: #555;
}

/* Grid Layout */
.custom-contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.custom-info,
.custom-form {
  flex: 1 1 500px;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* Contact Details */
.custom-contact-details p {
  margin: 10px 0;
  font-size: 18px;
}

.custom-contact-details a {
  color: #303f49e8;
  text-decoration: none;
}

.custom-contact-details a:hover {
  text-decoration: underline;
}

/* Form Styles */
.custom-form input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.custom-submit-btn {
  width: 100%;
  background: #303f49e8;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.custom-submit-btn:hover {
  background: #303f49e8;
}

.custom-rera {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  color: #777;
}

/* Consent Box */
/* .custom-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  color: #555;
  margin-top: 10px;
} */

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-contact-grid {
    flex-direction: column;
  }

  .custom-info,
  .custom-form {
    animation: none;
    opacity: 1;
  }

  .custom-title {
    font-size: 24px;
  }
}

.project-section {
  background: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.project-container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.project-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
  position: relative;
}

/* Grid Layout */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 4fr));
  gap: 30px;
}

/* Card Style */
.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.project-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-card h4 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #444;
}

.project-card p {
  font-size: 14px;
  color: #666;
  /* min-height: 50px; */
}

.project-btn {
  display: inline-block;
  /* margin-top: 15px; */
  padding: 10px 20px;
  background: #303f49e8;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.project-btn:hover {
  background: #303f49e8;
  color: #fff;
}

/* Animations */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation-delay: 0s;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }


.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns */
  gap: 20px;
      margin-bottom: 70px;
}

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

.specialist-block {
  background: #f9f9f9;
  padding: 20px;
  border: 1px solid #303f49e8;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.specialist-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #303f49e8;
}

.specialist-block p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.hero-banner-modern {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: fadeSlide 20s infinite;
  opacity: 0;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  animation-delay: 6s;
}
.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes fadeSlide {
  0%, 100% {
    opacity: 0;
  }
  8%, 30% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}

.banner-slider-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  z-index: 2;
}

.banner-card-track {
  display: flex;
  gap: 20px;
  /* overflow-x: auto; */
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.banner-card {
  min-width: 280px;
  max-width: 300px;
  background: #303f49e8;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000000;
  padding: 20px;
  border-radius: 16px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.banner-card:hover {
  transform: translateY(-5px);
}

.banner-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: 303f49e8;
}

.banner-card .location {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.banner-card .details {
  font-size: 14px;
  margin-top: 5px;
}

.banner-card .price {
  font-size: 16px;
  font-weight: 600;
  color: #fcaf17;
  margin-top: 10px;
}

.banner-card .note {
  font-size: 13px;
  font-style: italic;
  color: #000000;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .banner-slider-content {
    bottom: 20px;
  }

  .banner-card {
    min-width: 240px;
    padding: 15px;
  }

  .banner-card h3 {
    font-size: 18px;
  }
}
.banner-card-track {
  display: flex;
  gap: 20px;
  /* overflow-x: auto; */
  scroll-snap-type: x mandatory;
  animation: scrollCards 25s linear infinite;
}

@keyframes scrollCards {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .hero-banner-modern {
    display: none !important;
  }
}
 .animate-fade-in-left {
    animation: fadeInLeft 1s ease-in-out both;
  }

  .animate-fade-in-right {
    animation: fadeInRight 1s ease-in-out both;
  }

  @keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  .cp-about-section{
    padding: 60px 0;
  }

  /* .project-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    transition: transform 0.3s ease;
  } */

  .project-card:hover {
    transform: translateY(-5px);
  }

  @media (max-width: 575px) {
    .project-card {
      text-align: center;
    }
  }

/* Hide on mobile */
@media (max-width: 767px) {
  .hero-banner-modern {
    display: none;
  }
}

.hero-banner-modern {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-slider-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.4); /* dark transparent layer */
  z-index: 2;
  overflow: hidden;
}

.banner-card-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  animation: scrollCards 20s linear infinite;
}

.banner-card {
  flex: 0 0 auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  min-width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Auto-scroll animation */
@keyframes scrollCards {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

  /* Bignonia Towers css*/

  .hero-banner-single {
  background-image: url('../images/BignoniaTowers/CP-bignonia-banner.jpg');  
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  padding: 20px;
}

.hero-text h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 25px;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-banner-single {
    height: 40vh;
  }
}

.about-modern {
  padding: 80px 20px;
  background: #f8f9fa;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

.about-images {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.img-main {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.img-overlay {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 80%;
  border-radius: 12px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #303f49e8;
}

.about-text p {
  font-size: 18ox;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.btn-about {
  display: inline-block;
  padding: 12px 28px;
  background: #303f49e8;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-about:hover {
  background: #303f49e8;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .img-overlay {
    display: none;
  }

  .image-wrapper {
    max-width: 90%;
  }
}
.gallery-section {
  padding: 60px 20px;
  background-color: #e0e0e0;
  text-align: center;
}

.gallery-title {
  font-size: 40px;
  margin-bottom: 30px;
  color: #303f49e8;
}

.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 20px); /* 3 images per row */
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

@media (max-width: 991px) {
  .gallery-item {
    flex: 0 0 calc(50% - 20px); /* 2 per row on tablet */
  }
}

@media (max-width: 576px) {
  .gallery-item {
    flex: 0 0 100%; /* 1 per row on mobile */
  }
}

.location-advantages-section {
  padding: 50px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 40px;
  color: #303f49e8;
  margin-bottom: 10px;
      font-weight: 500;
}

.section-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.location-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  width: calc(33.333% - 30px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.location-box i {
  color: #303f49e8;
  margin-bottom: 15px;
}

.location-box h4 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #303f49e8;
}

.location-box p {
  font-size: 16px;
  color: #000000;
}

.location-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .location-box {
    width: calc(50% - 30px);
  }
}

@media (max-width: 576px) {
  .location-box {
    width: 100%;
  }
}

.highlight-section {
  background: #f5f7fa;
  padding: 50px 0;
}

.highlight-title {
  font-size: 40px;
  color: #303f49e8;
  font-weight: 700;
}

.highlight-subtitle {
  font-size: 25px;
  color: #555;
  margin-bottom: 15px;
}

.highlight-desc {
  font-size: 16px;
  color: #444;
}

.btn-primary {
  background-color: #303f49e8;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #303f49e8;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-item i {
  font-size: 30px;
  color: #303f49e8;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 5px;
}

.highlight-text h5 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.highlight-text p {
  font-size:16px;
  color: #555;
}

@media (max-width: 767px) {
  .highlight-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .highlight-section {
    padding: 2rem 1rem;
  }

  .highlight-title {
    font-size: 25px;
  }

  .highlight-subtitle {
    font-size: 20px;
  }

  .highlight-desc {
    font-size: 16px;
  }
}

  #assets-fullwidth {
  background: #f9f9f9;
  padding: 60px 15px;
}


.asset-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 25px;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.asset-card:hover {
  transform: translateY(-10px);
}

.asset-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
}

.asset-card h4 {
  font-size: 25px;
  margin-bottom: 10px;
}

.asset-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .asset-card {
    padding: 20px;
  }
  
}

 .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .card-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
  }

  .card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .card-box h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .card-box ul {
    padding-left: 1rem;
  }

  .card-box ul li {
    margin-bottom: 8px;
    list-style-type: disc;
    font-size: 15px;
    color: #4b5563;
  }

  .specifics-section {
    background: linear-gradient(135deg, #f5f7fa, #e3edf7);
    padding: 60px 0;
  }

  .specifics-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    height: 100%;
  }

  .specifics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  .specifics-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #303f49e8;
  }

  .specifics-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
  }

  .specifics-desc {
    font-size: 14px;
    color: #4b5563;
  }

.project-card {
  min-height: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.project-image-wrapper {
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .project-card {
    flex-direction: column !important;
  }
  .project-image-wrapper {
    max-width: 100%;
    height: auto;
  }
}


/* Background Overlay */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  animation: fadeIn 0.5s ease-in-out;
}

/* Popup Container */
.popup-content {
  background-color: #ffffff;
  max-width: 400px;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.5s ease;
}

/* Heading & Text */
.popup-content h2 {
  margin-bottom: 10px;
  color: #333;
}

.popup-content p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* Form Inputs */
.popup-content input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

/* Submit Button */
.popup-content button {
  width: 100%;
  padding: 12px;
  background-color: #303f49e8;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-content button:hover {
  background-color: #303f49e8;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #333;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.location-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

/* Slight blur on the image */
.blurred-image {
  width: 100%;
  display: block;
  filter: blur(3px);
  border-radius: 10px;
}

/* Overlay to center the button */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button styles */
.center-button {
  padding: 14px 30px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.center-button:hover {
  background-color: rgba(255, 255, 255, 1);
}
